home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / kcl / akcl / akcl1615.lha / xbin / notify < prev    next >
Text File  |  1991-10-02  |  451b  |  20 lines

  1. #!/bin/sh
  2.  
  3. # Send in a notification about successful compilation, which may
  4. # help others, and help in determining on which machines and
  5. # levels of the OS compilation has been successful.
  6.  
  7. if [ -f /bin/mail ] ; then
  8.  
  9.  echo AKCL `cat minvers` Machine: `cat machine`   > tmpx
  10.  ls -l h/config.h >> tmpx
  11.  echo $@ >> tmpx
  12.  
  13.  if [ -f /etc/motd ] ; then
  14.   cat /etc/motd | sed -e "2,10000d" >> tmpx ;
  15.  fi
  16.  
  17.  cat tmpx | /bin/mail akcl@nicolas.ma.utexas.edu
  18. fi
  19.  
  20.